Mike Balistreri
Mike Balistreri
About
- Display Name
- Mike Balistreri
- Joined
- Visits
- 7
- Last Active
- Roles
- Member
Comments
-
Thank you Jean-Phillipe, Our application uses MIDI as a way to program our products. We have a Web-Based APP that allows users to create their own custom keyboard macros, then they will run a "Download" utility and switch their product in…
-
How to read the event payload? var midi_output = WebMidi.getOutputByName("ControlPad 48 MMode"); console.log(midi_output); WebMidi.outputs[midi_output].sendSysex(0x7e, [0x7d, 0x25, 0x09]); Event Payload: event Objecttarget Input The Input …
-
So, to send "F0 7D 25 09 F7" to our MIDI Device: WebMidi.outputs[0].sendSysex(0x7e, [0x7d, 0x25, 0x09]); To receive the SysEx message (Answer) from the Midi Product? WebMidi.enable(function(err) { if (err) { …
-
Thank you very much for your help.. Here s a link to our current "beta test" version of our device programmer. https://www.genovation.com/cpxx/cpxx_v1_22a/index.html We have most of it working now, however, we are having trouble with sendi…
-
Regarding the manufacturer ID, how do I send to a MIDI device when I don't know the manufacturer ID at the time the user connects? Is there a way to READ the manufacturer ID, or send to a MIDI device anyway?
-
[time=undefined] DOMHighResTimeStamp | String optional This value can be one of two things. If the value is a string starting with the + sign and followed by a number, the request will be delayed by the specified number (in milliseconds). This opti…
-
Hi Jean-Phillipe, Thank you for the help.. I did not find that document, so I am grateful for your assistance.. Mike
-
https://djipco.github.io/webmidi/v1.0.0-beta.15/classes/WebMidi.html#method_sendSysex https://djipco.github.io/webmidi/v1.0.0-beta.15/classes/WebMidi.html#event_sysex